iterable
Since
0.10.6
Inheritors
Functions
Link copied to clipboard
pure function join_to_text([separator: text], [prefix: text], [postfix: text], [limit: integer?], [truncated: text], [transform: (T) -> text]): text
Creates a text from all the elements separated using separator
and using the given prefix
and postfix
if supplied.
If the iterable is large, you can specify a non-negative value of limit
, in which case only the first limit
of elements will be appended, followed by the truncated
text (which defaults to "...").